home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacGames Sampler
/
PHT MacGames Bundle.iso
/
MacSource Folder
/
Samples from the CD
/
C and C++
/
sesame C ƒ
/
stdio.h
< prev
next >
Wrap
Text File
|
1986-11-28
|
644b
|
20 lines
/* */
/* I/O definitions */
/* */
#define stdin 1
#define stdout 2
#define stderr 3
#define printf _printf /* You may be wondering about these */
#define sprintf _sprintf /* redefinitions of the standard C routines. */
#define fprintf _fprintf /* This is necessary for passing variable */
/* numbers of parameters to these functions. */
#define scanf _scanf /* To find out how it works, you need to send */
#define sscanf _sscanf /* for the documentation */
#define fscanf _fscanf
#define FILE int
#define EOF -1
#define NULL 0